home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shocking The Web CD-ROM
/
SHOCK_CD.ISO
/
mac
/
Chapter Tutorials
/
DevGallery
/
Headbone
/
Source
/
DRESSVEL.DIR
/
00091_turnPageScripts.ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-04-30
|
344 b
|
20 lines
on goRightOnePage
global gCurPage, gcPAGES
if gCurPage = gcPAGES then
set gCurPage to 1
else
set gCurPage to gCurPage + 1
end if
go(string(gCurPage))
end
on goLeftOnePage
global gCurPage, gcPAGES
if gCurPage = 1 then
set gCurPage to gcPAGES
else
set gCurPage to gCurPage - 1
end if
go(string(gCurPage))
end